Uses of Class
org.eclipse.vtp.desktop.projects.core.FieldType

Packages that use FieldType
org.eclipse.vtp.desktop.model.core   
org.eclipse.vtp.desktop.projects.core   
org.eclipse.vtp.desktop.projects.core.internals   
 

Uses of FieldType in org.eclipse.vtp.desktop.model.core
 

Methods in org.eclipse.vtp.desktop.model.core that return FieldType
 FieldType ObjectDefinition.getType()
           
 

Constructors in org.eclipse.vtp.desktop.model.core with parameters of type FieldType
ObjectDefinition(java.lang.String name, FieldType type)
           
ObjectField(java.lang.String name, FieldType fieldType, boolean readOnly)
           
Variable(java.lang.String name, FieldType type)
           
 

Uses of FieldType in org.eclipse.vtp.desktop.projects.core
 

Fields in org.eclipse.vtp.desktop.projects.core declared as FieldType
static FieldType FieldType.BOOLEAN
          Declaration of a typical BOOLEAN field type.
static FieldType FieldType.DATETIME
          Declaration of a typical DATETIME field type.
static FieldType FieldType.DECIMAL
          Declaration of a typical DECIMAL field type.
static FieldType FieldType.NUMBER
          Declaration of a typical NUMBER field type.
static FieldType FieldType.STRING
          Declaration of a typical STRING field type.
 

Methods in org.eclipse.vtp.desktop.projects.core that return FieldType
static FieldType FieldType.booleanArray()
          Constructs a new FieldType that represents an array of boolean values.
static FieldType FieldType.custom(java.lang.String typeName, boolean object, boolean array, int precision)
          Constructs a new FieldType from the complete definition provided by the given data type name, object flag, array flag, and precision value.
static FieldType FieldType.dateTimeArray()
          Constructs a new FieldType that represents an array of dates.
static FieldType FieldType.decimal(int precision)
          Constructs a new FieldType that represents a decimal number with the given precision.
static FieldType FieldType.decimalArray()
          Constructs a new FieldType that represents an array of decimal numbers.
static FieldType FieldType.decimalArray(int precision)
          Constructs a new FieldType that represents an array of decimal numbers that will have the given precision.
 FieldType IBusinessObjectField.getDataType()
           
 FieldType IWebServiceOperation.getFault(java.lang.String faultName)
          Returns the web service message formats this operation returns as faults.
 FieldType IWebServiceOperation.getInput(java.lang.String inputName)
          Returns the named web service message format this operation takes as input.
 FieldType IWebServiceOperation.getOutput()
          Returns the web service message format this operation returns as output.
static FieldType FieldType.load(org.w3c.dom.Element element)
          Constructs a new FieldType from the information stored in the given XML DOM sturcture.
static FieldType FieldType.number(int precision)
          Constructs a new FieldType that represents a number with the given precision.
static FieldType FieldType.numberArray()
          Constructs a new FieldType that represents an array of numbers.
static FieldType FieldType.numberArray(int precision)
          Constructs a new FieldType that represents an array of numbers that will have the given precision.
static FieldType FieldType.object(IBusinessObject objectType)
          Constructs a new FieldType that represents a business object.
static FieldType FieldType.objectArray(IBusinessObject objectType)
          Constructs a new FieldType that represents an array of business objects.
static FieldType FieldType.stringArray()
          Constructs a new FieldType that represents an array of strings.
 

Uses of FieldType in org.eclipse.vtp.desktop.projects.core.internals
 

Methods in org.eclipse.vtp.desktop.projects.core.internals that return FieldType
 FieldType WebServiceTypeField.getDataType()
           
 FieldType BusinessObjectField.getDataType()
           
 FieldType WebServiceOperation.getFault(java.lang.String faultName)
           
 FieldType WebServiceOperation.getInput(java.lang.String inputName)
           
 FieldType WebServiceOperation.getOutput()
           
protected  FieldType WebServiceTypeSet.loadFieldType(java.lang.Class objectType)
          Determines the field type of the supplied Java class.
 

Constructors in org.eclipse.vtp.desktop.projects.core.internals with parameters of type FieldType
BusinessObjectField(BusinessObject businessObject, java.lang.String name, FieldType dataType, java.lang.String initialValue)
          Creates a new BusinessObjectField with the given name, data type, initial value.
WebServiceTypeField(java.lang.String name, FieldType dataType)
          Creates a new WebServiceTypeField.